
1) Import and Publish the xml Endpoints and Forms


2) Edit 'config.lagan.getConfig',
	- errorEmailTo - Add your email address
	- authWsdlUrl and serviceWsdlUrl, Add your lagan server url, please note that the server you are installing the endpoints must have access to the lagan server wsdls



3) Edit 'DOGWARDEN'/'RAODFAULT' forms confirmation tab > HTML Template CONFIRMATION Default Function.  Line 23 onwards, these values relate to your environment so will need updated accordingly:


        formParams.formDetails.laganClassificationEventCode = "0";					// This needs to be changed
        formParams.formDetails.laganEformTitle = "Dog control via self-service";	// This needs to be changed
        formParams.formDetails.laganEformName = "Dog Warden";   					// This needs to be changed
        formParams.formDetails.laganEformFileName = "DogWarden";					// This needs to be changed
        formParams.formDetails.laganPartyId = "0"; // AnonymousWebUser				// This needs to be changed


	You will also have to manually bind the 1:1 Goss form fields to the Lagan form fields.  E.g. in Lagan, we have a field called 'txt_emailaddress', we push the value of the Goss form 'EMAIL' to this:
      	
        formParams.formValues.txt_emailaddress = helper.queryFieldValue('EMAIL');
        formParams.formValues.txt_telnumber = helper.queryFieldValue('TELNUMBER');

